home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format (UK) 188
/
01-04 PC Format 188 [2006-06] DVD side 1_.iso
/
Menus
/
Scenes
/
HOME.dir
/
00001_Script_Roots Contoller
next >
Wrap
Text File
|
2006-04-20
|
1KB
|
67 lines
global zoom3dspriteActive
global dock
global mKey
global cList
global DisableGFX
global mp
global dv
on prepareMovie
CPUSpeed = baReadRegNumber( "HARDWARE\DESCRIPTION\System\CentralProcessor\0", "~MHz", 0, "HKEY_LOCAL_MACHINE" )
if CPUSpeed < 1400 then
DisableGFX = True
else
DisableGFX = False
end if
UpdateIssueNum
SwapBgGraphic
GatherList
ProcessList
SortChannels
PopulateDockCast
GenerateDock
GenerateBaseMenuObjects
window_initSys
end
on UpdateIssueNum
nt = getNetText(mp & "Menus" & dv & "IssueLabel.txt")
if netDone(nt) then
member("issuenumber").text = netTextResult(nt)
end if
end
on SwapBgGraphic
ok = baFileExists(mp & "menus" & dv & "resources" & dv & "bg_image.jpg")
if ok = 1 then
member("bg_image").filename = mp & "menus" & dv & "resources" & dv & "bg_image.jpg"
else
alert("No bg_image.jpg found in " & mp & "menus" & dv & "resources")
end if
end